home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / tpasswrd / pwdreg.pas < prev    next >
Pascal/Delphi Source File  |  1996-09-15  |  808b  |  41 lines

  1. unit Pwdreg;
  2.  
  3. { PWDREG.PAS registers the following components ... }
  4.  
  5. {
  6.   - TPassword
  7.   - TPasswordBox
  8.  
  9.   For more information about each component, check out the demo and read
  10.   the documenttion...
  11.  
  12.   HOW TO INSTALL:
  13.  
  14.   1. Start Delphi
  15.   2. Select Options|Install Components from the menu
  16.   3. Press the Add button, type \directory\PWDREG and press OK. Where directory
  17.      specifies the search-path for these components.
  18.   4. Press the OK button again and rebuild the Components library.
  19.   5. These components are now accessable through the TDC page on the
  20.      component palette.
  21.  
  22. }
  23.  
  24. interface
  25.  
  26. uses
  27.   Classes,
  28.   Password,
  29.   PwdBox;
  30.  
  31. procedure Register;
  32.  
  33. implementation
  34.  
  35. procedure Register;
  36. begin
  37.      RegisterComponents('TDC',[TPassword, TPasswordBox]);
  38. end;
  39.  
  40. end.
  41.